go/types.declInfo.init (field)
8 uses
go/types (current package)
decl.go#L190: check.constDecl(obj, d.vtyp, d.init, d.inherited)
decl.go#L193: check.varDecl(obj, d.lhs, d.vtyp, d.init)
initorder.go#L117: init := &Initializer{infoLhs, info.init}
resolver.go#L24: init ast.Expr // init/orig expression, or nil (for const and var declarations only)
resolver.go#L36: return d.init != nil || d.fdecl != nil && d.fdecl.Body != nil
resolver.go#L348: d := &declInfo{file: fileScope, vtyp: d.typ, init: init, inherited: d.inherited}
resolver.go#L363: d1 = &declInfo{file: fileScope, lhs: lhs, vtyp: d.spec.Type, init: d.spec.Values[0]}
resolver.go#L378: di = &declInfo{file: fileScope, vtyp: d.spec.Type, init: init}